home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / appletalk / uab.shar / bridge_desc < prev    next >
Encoding:
Text File  |  1990-07-12  |  3.6 KB  |  88 lines

  1. #
  2. # The bridge description file is a list of the valid ports for a
  3. # particular Unix AppleTalk Bridge (UAB).
  4. # In order to minimize the maintaince headache, one may use the host
  5. # name as a selector.
  6. #
  7. # Each port description is entered on a single line.
  8. #
  9. # The first item in a line is the host selector field.  It can be the
  10. # host name (as returned by gethostname).  In addition, you can use % to
  11. # match any character.  "*" can be used to match any host.  Finally, you
  12. # can use "*" at the end of a string to complete a match.  (Allowing "*"
  13. # at both the beginning and end or at an arbritrary location is a pain
  14. # because it is an unanchored search -- would have to use a regular
  15. # expression matcher to do this -- ugh).  [MUST BE SPECIFIED]
  16. #
  17. # The second field contains a tuple that specifies the interface's
  18. # link access protocol (LAP) and any device specific data required.
  19. #
  20. # Valid LAP method specifications:
  21. #    ELAP - EtherTalk Link Access Protocol 
  22. #    EtherTalk - same as above
  23. # [MUST BE SPECIFIED]
  24. #
  25. # The device specific data consists of a "device name" followed by an
  26. # colon and a "device number".  If the colon is omitted, the device
  27. # number is assumed to be zero.
  28. #
  29. # For Ethertalk, this should be interpreted as a ethernet "tap" device
  30. # (SunOS, Ultrix).  For example, "ie:1" for ethertalk on interface ie1.
  31. #
  32. # (Note, this is subject to change)
  33. # The third field specifies the local demultiplexing delivery
  34. # mechanism for delivery of DDP packets not destined for the bridge
  35. # process.  Currently defined mechanisms are: "none" which says there
  36. # will be other client processes; "mkip" - modified version of kip
  37. # style udp encapsulation using a different udp port range.
  38. # (Hopefully, there will be a way to do direct kip, asynch appletalk,
  39. # etc. in the future)
  40. # [MUST BE SPECIFIED]
  41. #
  42. # The fourth and last field specifies two items paired in a
  43. # [<item1>,<item2>] format.  The first is the DDP network that should
  44. # be associated with this port.  If you specify zero, the ddp network
  45. # number will be acquired via RTMP if there are other bridges that
  46. # know the network number.  Note that only a single network is allowed
  47. # at this point.  The network number may be specified as <number> or
  48. # <high byte>.<low byte>.  In both cases, the number may be decimal
  49. # (no leading zero), octal (leading zero), or hexadecimal (leading 0x
  50. # or 0X).
  51. #
  52. # The second item specifies the zone name associated with
  53. # the ddp network associated with this port.  If it is not specified,
  54. # it will be acquired via ZIP if there are other bridges on the
  55. # network that know the zone name.  Note: you may omit the comma if
  56. # you do not wish to specify a zone.
  57. #
  58. # note, \ can be used to quote a character (like a space in the zone
  59. # name :-)  A "\" at the end of a line continues the line.  Carriage
  60. # return and line feed both terminate a line.
  61. #
  62. #  You should order the file from more specific to less specific (in
  63. #  terms of host name matches.  Once a match has been found, then only
  64. #  matches with the exactly same pattern will succeed!
  65.  
  66. #hostname    [type,data]    local    [network,zone]
  67. # cunixc is connected to the machine room cable
  68.  cunixc        [elap,ni]    mkip    [0]
  69.  
  70. # jolt is connected to backbone on qe0
  71. # jolt is sometimes connected on qe1 to a private network
  72.  jolt         [ethertalk,qe]    mkip    [0]
  73.  jolt         [ethertalk,qe:1] none    [1.0,ETHERZONE]
  74.  
  75. # cunixa,c,d (only left) are on the machine room cable
  76.  cunix%        [ethertalk,ie]    mkip    [0]
  77.  
  78. # cuccb qe0 is on the backbone
  79. # cuccb qe1 is the mudd microlab private network
  80.  cuccb        [ethertalk,qe]    mkip    [0]
  81.  cuccb        [ethertalk,qe]    none    [0]
  82.  
  83.  
  84. # this is dummy entry
  85.  somewhere    [ethertalk,se]    none
  86.